/* Goodbye Kitty Cafe - About Us Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

/* 🌷 Global Styles */
body {
  background: linear-gradient(to bottom, hsl(330, 100%, 95%), hsl(330, 100%, 99%));
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* 🌸 Shared Navigation Bar (Bootstrap compatible) */
.custom-nav {
  background: linear-gradient(90deg, #ffb6d5, #ffe1f0);
  border-bottom: 3px solid #ff69b4;
  padding: 0.5rem 1rem;
}

.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.brand-title {
  color: #e6007e;
  font-weight: bold;
}

.nav-links li a {
  color: #e6007e;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff69b4;
  transform: scale(1.1);
}

.nav-button {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: white;
  border: 2px solid #e6007e;
  transition: 0.3s;
  font-weight: bold;
  color: #e6007e;
}

.nav-button:hover {
  background: #e6007e;
  color: white;
}

/* 🌼 Main Content */
main {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #ffe1f0;
  padding: 2rem 2.5rem;
}

.images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.images img {
  border-radius: 16px;
  box-shadow: 0 2px 10px #ffb6d5;
  width: 220px;
  height: auto;
  background: #fff0f7;
}

.media {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  color: #e6007e;
  margin-bottom: 0.6rem;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.events ul {
  list-style: disc inside;
  margin: 0.5rem 0 0 1rem;
}

.socials a {
  margin-right: 1.5rem;
  font-size: 1.3rem;
  color: #e6007e;
}

.socials a:hover {
  color: #ff69b4;
}

.contact-form {
  background: #ffe1f0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px #ffe1f0;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #e6007e;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 1rem;
  background: #e6007e;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s, color 0.3s;
}

.contact-form button:hover {
  background: #ffb6d5;
  color: #e6007e;
}

/* 📱 Responsive */
@media (max-width: 700px) {
  main { padding: 1rem; }
  .images { flex-direction: column; align-items: center; }
  .media { flex-direction: column; align-items: center; }
}

/* 🩷 Footer */
footer {
  text-align: center;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: #e6007e;
  border-top: 3px solid #ff69b4;
  padding-top: 1rem;
}
